/ Assembly List / LJCNetCommon / HTMLBuilder / StartAttribs

Namespace - LJCNetCommon


Returns

The HTML start attributes.

Syntax

C#
public Attributes StartAttribs()

Creates the HTML start attributes.

Example

C#
// Root Method Begin
var textState = new TextState();

var hb = new HTMLBuilder(textState);

// Example Method:
var attribs = hb.StartAttribs();

var result = hb.GetAttribs(attribs, textState);

// result:
// lang=\"en\" xmlns=\"http://www.w3.org/1999/xhtml"

Copyright © Lester J. Clark and Contributors.
Licensed under the MIT License.